home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_04 / welstead / uisetvar.cpp < prev   
Encoding:
C/C++ Source or Header  |  1993-12-13  |  654 b   |  29 lines

  1. Welstead:  Listing 2
  2.  
  3. // UISETVAR.CPP  Constants, types and variables for  
  4. // user interface 
  5.  
  6. #ifndef UISETVAR_CPP
  7. #define UISETVAR_CPP
  8.  
  9. #include <stdlib.h>           
  10. #include <iostream.h>
  11. #include <fstream.h>          
  12. #include <stdio.h>            
  13. #include <string.h>           
  14. #include <ctype.h>
  15. #define Uses_TDeskTop
  16. #define Uses_TApplication
  17. #include <tv.h>
  18. #include "ui.h"
  19.  
  20. title_str system_name;
  21. //Global desk top pointer: 
  22. static TDeskTop *gdesk_top = NULL;  
  23. //Global application pointer:
  24. static TApplication *gthe_app = NULL; 
  25. const boolean MAX_MIN_CHECK = TRUE;
  26. const boolean NO_MAX_MIN_CHECK = FALSE;
  27.  
  28. #endif
  29.